![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@types/object-inspect
Advanced tools
TypeScript definitions for object-inspect
npm install --save @types/object-inspect
This package contains type definitions for object-inspect (https://github.com/substack/object-inspect).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/object-inspect.
declare namespace objectInspect {
/**
* Inspection options
*/
interface Options {
/**
* Maximum depth of the inspection. Default: `5`.
*/
depth?: number | undefined;
/**
* Must be "single" or "double", if present.
*/
quoteStyle?: "single" | "double" | undefined;
/**
* Must be 0, a positive integer, Infinity, or null, if present. Default Infinity.
*/
maxStringLength?: number | null | undefined;
/**
* When true, a custom inspect method function will be invoked (either under the util.inspect.custom symbol, or the inspect property). When the string 'symbol', only the symbol method will be invoked. Default true.
*/
customInspect?: boolean | "symbol" | undefined;
/**
* Must be "\t", null, or a positive integer. Default null.
*/
indent?: number | "\t" | null | undefined;
/**
* Must be a boolean, if present. Default false. If true, all numbers will be printed with numeric separators (eg, 1234.5678 will be printed as '1_234.567_8')
*/
numericSeparator?: boolean | undefined;
}
}
/**
* Return a string `s` with the string representation of `obj` up to a depth of `opts.depth`.
*
* @param obj Object to inspect
* @param opts Inspection options. Default: `{}`.
* @return String representation of `obj`
*/
declare function objectInspect(obj: any, opts?: objectInspect.Options): string;
export = objectInspect;
These definitions were written by Charles Samborski, Akuukis, and Jordan Harband.
FAQs
TypeScript definitions for object-inspect
The npm package @types/object-inspect receives a total of 0 weekly downloads. As such, @types/object-inspect popularity was classified as not popular.
We found that @types/object-inspect demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.